今天讀這小節的開頭
原來 Object 裡的 property 還默默記錄了除了 value 以外的東西,我們可以透過 Object.getOwnPropertyDescriptor() 取得
Object.getOwnPropertyDescriptor( myObj , "propertyName" )
像是
var myObj = { a: 'Pen' };
Object.getOwnPropertyDescriptor( myObj, "a" );
// 可以取得
// configurable: true
// enumerable: true
// value: "Pen"
// writable: true
明天往後看再了解 configurable、enumerable、writable 能讓我們如何操作
若上述理解有誤都在麻煩提點提點了 ԅ(≖‿≖ԅ)